Completed
Branch master (93a1f2)
by Daniel
01:17
created

es6.test.js ➔ ???   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 7
rs 9.4285
1
import chai from 'chai';
2
import {isString} from '../dist/strman';
3
4
describe('Usage with es6', () => {
5
    describe('#require', () => {
6
        it('should be true when value is true', () => {
7
            chai.expect(isString('foo')).to.equal(true);
8
        });
9
    });
10
});
11